home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Creative Review 34
/
Creative-Review-CD-ROM-34.iso
/
pc
/
foo
/
foos.dir
/
00020_Script_scrolldown =
< prev
next >
Wrap
Text File
|
1998-01-23
|
853b
|
42 lines
on mouseDown
global thePic,spryght
--works out which little pic to move + puts it at other end of stack
if thePic>8 then
set theMinusNumber=8
else
set theMinusNumber=-2
end if
set spryght=(10+(thePic-theMinusNumber))
--total height of stack
set the locV of sprite spryght=the locV of sprite spryght -(114*10)
--when one end reached goes to other
if thePic=1 then
set thePic=10
else
set thePic=thePic-1
end if
--slides down all the pictures
repeat with step=1 to 6
repeat with spright=11 to 20
set the locV of sprite spright=the locV of sprite spright +19
end repeat
updateStage
end repeat
--puts up big picture to match
set the member of sprite 10=string(thePic) & "large"
updateStage
end